home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / sync / RCS / Sync_SlowLock.c,v < prev    next >
Text File  |  1988-07-25  |  2KB  |  117 lines

  1. head     1.3;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.3
  9. date     88.07.25.11.12.00;  author ouster;  state Exp;
  10. branches ;
  11. next     1.2;
  12.  
  13. 1.2
  14. date     88.06.21.11.07.49;  author ouster;  state Exp;
  15. branches ;
  16. next     1.1;
  17.  
  18. 1.1
  19. date     88.06.19.14.34.02;  author ouster;  state Exp;
  20. branches ;
  21. next     ;
  22.  
  23.  
  24. desc
  25. @@
  26.  
  27.  
  28. 1.3
  29. log
  30. @Lint.
  31. @
  32. text
  33. @/* 
  34.  * Sync_SlowLock.c --
  35.  *
  36.  *    Source code for the Sync_SlowLock library procedure.
  37.  *
  38.  * Copyright 1988 Regents of the University of California
  39.  * Permission to use, copy, modify, and distribute this
  40.  * software and its documentation for any purpose and without
  41.  * fee is hereby granted, provided that the above copyright
  42.  * notice appear in all copies.  The University of California
  43.  * makes no representations about the suitability of this
  44.  * software for any purpose.  It is provided "as is" without
  45.  * express or implied warranty.
  46.  */
  47.  
  48. #ifndef lint
  49. static char rcsid[] = "$Header: Sync_SlowLock.c,v 1.2 88/06/21 11:07:49 ouster Exp $ SPRITE (Berkeley)";
  50. #endif not lint
  51.  
  52. #include <sprite.h>
  53. #include <status.h>
  54. #include <stdio.h>
  55. #include <sync.h>
  56.  
  57.  
  58. /*
  59.  * ----------------------------------------------------------------------------
  60.  *
  61.  * Sync_SlowLock --
  62.  *
  63.  *      Aquire a lock.  This is the second level lock routine.  Sync_GetLock
  64.  *    has already been called and it discovered that the lock is already
  65.  *    held by someone else.  This routine performs the system call to
  66.  *    go into the kernel and go through the slower locking procedure.
  67.  *
  68.  * Results:
  69.  *    SUCCESS.
  70.  *
  71.  * Side effects:
  72.  *      Lock aquired on exit.
  73.  *    
  74.  * ----------------------------------------------------------------------------
  75.  */
  76. ReturnStatus
  77. Sync_SlowLock(lockPtr)
  78.     Sync_Lock    *lockPtr;
  79. {
  80.     ReturnStatus    status;
  81.  
  82.     do {
  83.     status = Sync_SlowLockStub(lockPtr);
  84.     } while (status == GEN_ABORTED_BY_SIGNAL);
  85.     if (status != SUCCESS) {
  86.     panic("Sync_SlowLock: Could not aquire lock\n");
  87.     }
  88.     return(SUCCESS);
  89. }
  90. @
  91.  
  92.  
  93. 1.2
  94. log
  95. @Include status.h:  it's needed.
  96. @
  97. text
  98. @d17 1
  99. a17 1
  100. static char rcsid[] = "$Header: Sync_SlowLock.c,v 1.1 88/06/19 14:34:02 ouster Exp $ SPRITE (Berkeley)";
  101. d22 1
  102. @
  103.  
  104.  
  105. 1.1
  106. log
  107. @Initial revision
  108. @
  109. text
  110. @d17 1
  111. a17 1
  112. static char rcsid[] = "$Header: proto.c,v 1.2 88/03/11 08:39:08 ouster Exp $ SPRITE (Berkeley)";
  113. d21 1
  114. a22 1
  115. #include <sys.h>
  116. @
  117.